home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / grindr.zip / GRINDER.EXE / DATA.Z / applicat.gri < prev    next >
Text File  |  1996-03-23  |  535b  |  12 lines

  1. // this is the classic "Hello world" program. A version of this is usually
  2. // offered by any new language proponents to give a small flavor of what
  3. // it takes to build a minimal application. Java does quit well, you think ?
  4. // NOTE !!! this class is subclassed off of Object. So you have to have the package
  5. // java.classes.java.lang selected and the class Object selected. Otherwise all bets are off.
  6.  
  7. class HelloWorldApp {
  8.     public static void main (String args[]) {
  9.         System.out.println("Hello World!");
  10.     }
  11. }
  12.